Welcome![Sign In][Sign Up]
Location:
Search - mplab c

Search list

[Other resourceZigBeeProtocolSourseAndSample

Description: 编译器:MCC18 v2.30.01 及其以上 编译环境:MPLAB 7.51 请把MpZBee文件夹拷贝到C盘根目录下才能正常编译。-compiler : MCC18 v2.30.01 and above compiler environment : Please MPLAB 7.51 MpZBee folder are copied to the directory C can be deep-rooted normal compiler.
Platform: | Size: 1759411 | Author: qinghui | Hits:

[assembly languagedingshi8

Description: 超声波测距,使用C与汇编混合* 芯片: PIC16F873A * * 晶振: 4MHz * * * * 使用PICC8.05编译器,MPLAB v7.50调试。 * * *
Platform: | Size: 32239 | Author: chen | Hits:

[Other resourcepicc8.05-pl

Description: 1 安装:首先安装MPLAB IDE V7.42的程序,然后再安装C的组件PICC8.05-PL.安装过程中全部确认选择,完毕后重启计算机。 2 激活:(PICC8.05-PL) 运行“开始”菜单下的“HI-TECH SOFTWARE”中的 激活(Complier Activation)程序, 再同时启动算号器程序(HtkeyGen.exe),将Last Name前的勾去掉,填入公司名称,算出相应内 容填入激活程序相应栏目,OK即可完成激活。 3 设置: 3.1 将MPLAB 7.42启动后,在文件栏中打开C的桌面项目文件,在Project栏目中 检查 select language Toolsuite...中的选项,所有路径须指向安装路径如C:\\HT-PIC\\BIN\\PICC.EXE; 3.2 在Project栏目中检查 setlanguage Tool Locations中的HI-TECH ToolsuiteXDGR 相关选项,executables中各程序应指向picc.exe Default Search Paths & Directories中 的相关路径应为安装目录如C:\\HT-PIC\\include 和C:\\HT-PIC\\lib; 3.3 设置programmer中的select programmer选项为\"MPLAB IED 2\"(经验:如果不打开编译器,此选项无法选中)。 3.4 设置单片机型号,在Congfigure中的Select Device选择准确的芯片型号;
Platform: | Size: 7612105 | Author: smren | Hits:

[Other resourceCAN202A_Exercise-PIC

Description: 一个CAN学习程序,硬件环境如CAN_202A.pdf所述,运用PIC18系列MCU,开发环境为MPLAB7.x + MPLAB-C18(C编译器插件)
Platform: | Size: 29927044 | Author: Wayland | Hits:

[OtherMPLAB_C18user

Description: MPLAB® C18 C 编译器用户指南
Platform: | Size: 674345 | Author: edison | Hits:

[Other resourcertnSigGen_2

Description: C语言代码,生成3路有120度相位差的125Hz方波信号。可简单改编为多路、有均匀相位差、占空比可调的方波信号。 CPU是PIC16F73,8MHz晶振,开发环境MPLAB IDE 7.6或更高版本,需安装有PICC8编译器。
Platform: | Size: 21607 | Author: dafy | Hits:

[Embeded-SCM Develops1d13700

Description: 利用PIC单片机来驱动s1d13700控制器的C代码,MPLAB环境下调试通过,但这只是s1d13700驱动的代码,并不是构成一个完整的工程。
Platform: | Size: 3552 | Author: pangyimin | Hits:

[Other resourceHCQ

Description: 用PIC单片机18F6520+ADE7755实现的一个大安培、锂离子电池的化程器。全部源码,C语言,开发环境MPLAB.
Platform: | Size: 105470 | Author: 王强 | Hits:

[Other Embeded programPIC数码管计算器简单版本.rar

Description: MPLAB V7.11 HI-TECH V8.05 Proteus V7.1 现在这只是一个简单的加法计算器,当前使用方法: 1) 输入第一个数(<4位);边输入边显示 2) 按+号;清空数码管; 3) 输第二个数(<4位) ; 边输入边显示 4) 按=号出结果;显示在数码管上 5) 按C号,返回1) 继续等待输入
Platform: | Size: 81190 | Author: backup | Hits:

[Othercanf18xx8.h

Description: 、 先在microchip网站上找到00738.zip,这个包中有 can18xx8.h,can18xx8.c,将其复制到一个你要编写程度的子目录中,例如C:\testcan下,这个时候这个东东是不能直接用的。 2、 下载一个MPLAB 7.10,直接安装(要求直接下载) 3、 再下载一个PICC18 (HI-TECH的),要正版哦(支持正版,买不起的想其它办法吧) 4、在你的头文件上写上如下的样式: #include "stdio.h" #include "can18xx8.h" #include "pic18fxx8.h"//可能是“pic.h”不太好包含,因此常会报错,直接包含克服之 5、然后设置好PICC和MPLAB,如果MPLAB上没有PICC18,则到PICC的网上下一个安装软件,可以直接运行安装就有了。 6、按照工程的基本要求把你的源代码、添加上两个库(不加也可以) 然后就可以写如下代码了:下面是一个完整版,可以直接使用microchip的库函数,本程序只是仿真调试过,未在多个芯片通信过,仍在制作中。 #include "stdio.h" #include "can18xx8.h" #include "pic18fxx8.h" unsigned long NewMessage; BYTE NewMessageData[8]; BYTE MessageData[8]; BYTE NewMessageLen; enum CAN_RX_MSG_FLAGS NewMessageFlags=1; BYTE RxFilterMatch; void main() { //int a; //int b; CANInitialize(1, 5, 7, 6, 2, CAN_CONFIG_VALID_XTD_MSG); while(1) { // Application specific logic here // Check for CAN message if ( CANIsRxReady() ) { CANReceiveMessage(&NewMessage,NewMessageData,&NewMessageLen,&NewMessageFlags); if ( NewMessageFlags & CAN_RX_OVERFLOW ) { // Rx overflow occurred; handle it } if ( NewMessageFlags & CAN_RX_INVALID_MSG ) { // Invalid message received; handle it } if ( NewMessageFlags & CAN_RX_XTD_FRAME ) { // Extended Identifier received; handle it } else { // Standard Identifier received. } if ( NewMessageFlags & CAN_RX_RTR_FRAME ) { // RTR frame received } else { // Regular frame received. } // Extract receiver filter match, if it is to be used RxFilterMatch = NewMessageFlags & CAN_RX_FILTER_BITS; } // Process received message // Transmit a message due to previously received message or // due to application logic itself. if ( CANIsTxReady() ) { MessageData[0] = 0x01; CANSendMessage( 0x02,MessageData,1,CAN_TX_PRIORITY_0 &CAN_TX_STD_FRAME & CAN_TX_NO_RTR_FRAME); } // Other application specific logic } // Do this forever // End of program } 以上均是参考文档并进行了修正,由于中间总是报错,为了大家让CAN更容易,谢谢大家!
Platform: | Size: 10682 | Author: lovelzs2008@126.com | Hits:

[ELanguageMicrochip_18C_Compiler_2_20

Description: Microchip PIC C18 compler v2.20-C18 compler v2.20
Platform: | Size: 15251456 | Author: developman | Hits:

[assembly languagedingshi8

Description: 超声波测距,使用C与汇编混合* 芯片: PIC16F873A * * 晶振: 4MHz * * * * 使用PICC8.05编译器,MPLAB v7.50调试。 * * *-Ultrasonic ranging, with the compilation of a mixed use of C* chip: PIC16F873A** oscillator: 4MHz**** use PICC8.05 compiler, MPLAB v7.50 debugging.***
Platform: | Size: 31744 | Author: | Hits:

[OtherMPLAB_C18user

Description: MPLAB® C18 C 编译器用户指南-MPLAB ? C18C Compiler User
Platform: | Size: 673792 | Author: edison | Hits:

[Embeded-SCM Develops1d13700

Description: 利用PIC单片机来驱动s1d13700控制器的C代码,MPLAB环境下调试通过,但这只是s1d13700驱动的代码,并不是构成一个完整的工程。-Using PIC microcontroller to drive s1d13700 controller C code, MPLAB environment through debugging, but this is only s1d13700-driven code, is not a complete project.
Platform: | Size: 3072 | Author: pangyimin | Hits:

[Software EngineeringHi-tech_PICC9.50

Description: 软件简介:HI-TECH PICC 是一款高效的C编译器,支持Microchip PICmicro 10/12/14/16/17系列控制器。是一款强劲的标准C编译器,完全遵守ISO/ANSI C,支持所有的数据类型包括24 and 32 bit IEEE 标准浮点类型。智能优化产生高质量的代码。属于第三方开发工具。能和MPLAB整合,内嵌开发环境(HI-TIDE)。 Hi-tech PICC Compiler v8.注册码 Serial: HCPIC-88888 First Name: ONE Last Name: TWO Company Name:ONE TWO Registration: 任意填,但一定要填 Activation: NPCBACMJKLPCADKLOEDBFPIOCIBAEIDI -Software Introduction: HI-TECH PICC is a highly efficient C compiler, support for Microchip PICmicro 10/12/14/16/17 Series controller. Is a strong standard C compiler, in full compliance with the ISO/ANSI C, supporting all data types including 24 and 32 bit IEEE standard floating-point type. Intelligent Optimization of high-quality generated code. Belonging to third-party development tools. Energy and MPLAB integrated embedded development environment (HI-TIDE). Hi-tech PICC Compiler v8. License Serial: HCPIC-88888 First Name: ONE Last Name: TWO Company Name: ONE TWO Registration: arbitrary filling, but must fill Activation: NPCBACMJKLPCADKLOEDBFPIOCIBAEIDI
Platform: | Size: 5122048 | Author: 李武 | Hits:

[Booksmplabc18

Description: Microchip推出的PIC18系列单片机由于采用改进型的哈佛结构及优化的硬件结构,内含三个间接寻址寄存器FSR0、FSR1和FSR2, RAM 和ROM 空间都比较大, 因此PIC18非常适合于采用C语言进行软件设计。C语言具有可读性强, 便于移植等优点。 虽然MPLAB-C18 C语言编译器的编译效率比较高, 但与汇编语言相比, C的效率终究差一些, 因此在某些应用场合, 如何优化C的效率, 减小代码, 提高执行速度, 是许多工程师们的追求目标。下面介绍MPLAB-C18 C编译器的一些优化技巧, 与大家共享。 -PIC18
Platform: | Size: 821248 | Author: 龙汉平 | Hits:

[SCMlastPIC

Description: 该源码是一个MicroChip的MPLAB工程。其中last.c为源码。这个程序实现了串口通信,IIC 通信以及基本的IO控制。串口可实现与PDA通信,IIC实现的是温度测量。并且通过IO口实现对直流电机的控制。-The source is a MicroChip the MPLAB project. Last.c for which source code. This procedure achieved a serial communication, IIC communications, as well as control of the basic IO. PDA serial communication can be achieved with, IIC temperature measurement is achieved. IO mouth through the realization of the control of DC motor.
Platform: | Size: 27648 | Author: 高扬 | Hits:

[Other Embeded program18F2455_lcd

Description: PIC18F2455 interface with graphical display with KS0108 in C (MPLAB C18)
Platform: | Size: 33792 | Author: JZ | Hits:

[DSP programsvpwm

Description: 上海交通大学电气工程系DSP实践2009年示例程序,基于带低频补偿的恒压频比SVPWM开环电机调速系统程序,使用可调电阻与液晶作为人机界面。该程序在IGBT逆变桥上测试通过。开发使用MPLAB 8.30,调试使用I.C.E.-Electrical Engineering Department of Shanghai Jiaotong University in 2009 the practice of DSP sample procedures, with low-frequency-based compensation than SVPWM constant frequency open-loop motor speed control system, the use of adjustable resistance and as a man-machine interface LCD. The program in the IGBT inverter bridge test. The development of the use of MPLAB 8.30, using the ICE debugger
Platform: | Size: 50176 | Author: 唐聪 | Hits:

[Other Embeded programlcd.h and lcd.c

Description: These files are used to interface any mcu to 16x2 Alphanumeric lcd. These can be used in KEIL, MPLAB etc.
Platform: | Size: 1207 | Author: mexcoindia | Hits:
« 1 2 3 45 6 7 8 »

CodeBus www.codebus.net